home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / lstcfl.c < prev    next >
C/C++ Source or Header  |  1988-12-05  |  565b  |  22 lines

  1. /* lstcfl.c       by Tom Harrold          Dec., 5,1988 */
  2.  
  3. /* This program finds and prints all files in the current directory with
  4.     the .c extension
  5. */
  6.  
  7. #include <dos.h>
  8. main()
  9. {
  10.     struct find_t c_file;
  11.     /* find first .c file in current directory */
  12.     _dos_findfirst ("*.c", _A_NORMAL, &c_file);
  13.     printf ("Listing of .c files\n\n");
  14.     printf ("file %s is %d bytes long\n",c_file.name, c_file.size);
  15.     /* find the rest of the .c files */
  16.     while (_dos_findnext(&c_file) == 0)
  17.         printf ("file %s is %d bytes long\n",c_file.name,c_file.size);
  18. }
  19.  
  20.  
  21.  
  22.